home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- REM
- REM DIRGIF.BAT version 1.0, 01/29/93
- REM James W. Birdsall
- REM This batch file obtains the names of all files named .GIF in the
- REM directory given as the first argument and passes them one by one
- REM to the batch file ONEGIF. Output is put in the file given by the
- REM second argument.
- REM
- FOR %%N IN ( %1\*.GIF ) DO CALL ONEGIF.BAT %%N %2
-